home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / cfgetisp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-01  |  257 b   |  15 lines

  1. /*
  2. Public domain termios cfgetispeed() for the MiNT library
  3. 10 October 1993 entropy@terminator.rs.itd.umich.edu -- first attempt
  4. */
  5.  
  6. #include <types.h>
  7. #include <termios.h>
  8.  
  9. speed_t
  10. cfgetispeed(stp)
  11.   const struct termios *stp;
  12. {
  13.   return stp->_c_ispeed;
  14. }
  15.